home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib8 / v_10_04 / 1004020c < prev    next >
Encoding:
Text File  |  1995-11-01  |  126 b   |  7 lines

  1. /* srand function */ #include <stdlib.h>
  2.  
  3. void (srand)(unsigned int seed)
  4.     {    /* alter the seed */
  5.     _Randseed = seed;
  6.     }
  7.